home *** CD-ROM | disk | FTP | other *** search
- /*
- ** PGP5GUI - A GUI using Magic User Interface v3.8
- **
- ** Copyright 23-JUNE-1998 by Stefan Zakarias, All Rights Reserved.
- **
- ** This source code is released as FREEWARE - Use it for whatever you like,
- ** as long as NO financial reward is gained by you for such usage.
- **
- ** If you use any parts of the this source code for anything, give ME credit
- ** wherever credit is due, please ;-)
- */
-
- #ifndef SelPGPKeyGUI_FILE_H
- #define SelPGPKeyGUI_FILE_H
-
- struct ObjApp_SelKey
- {
- APTR App;
- APTR WI_SelectPGP5Key;
- APTR LV_KEYLISTVIEW;
- APTR BT_SEL_OK;
- APTR BT_SEL_CANCEL;
- };
-
- #define SEL_OK 1
- #define SEL_CANCEL 2
-
- #define ALGO_SIZE 4
- #define KEYID_SIZE 11
- #define CREATED_SIZE 11
- #define USERID_SIZE 256
-
- #define BUFFER_SIZE (ALGO_SIZE+KEYID_SIZE+CREATED_SIZE+USERID_SIZE+8)
-
- #endif
-